home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK2.toast / Development Kits / Hardware / Mac OS USB DDK / Examples / USBSampleStorageDriver / SampleStorageDeviceID.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-01-12  |  903 b   |  42 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        SampleStorageDeviceID.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Version:    xxx put version here xxx
  7.  
  8.     Copyright:    © 1998-1999 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                Craig Keithley
  13.  
  14.         Other Contact:        xxx put other contact here xxx
  15.  
  16.         Technology:            USB Drivers
  17.  
  18.     Writers:
  19.  
  20.         (CJK)    Craig Keithley
  21.  
  22.     Change History (most recent first):
  23.  
  24.       <USB2>     1/11/99    CJK        update to use sources from 1.1f3 DDK
  25. */
  26.  
  27. #ifndef __SAMPLESTORAGEDEVICEID__
  28. #define __SAMPLESTORAGEDEVICEID__
  29.  
  30. #include <USB.h>
  31.  
  32. // The values for the device that this driver is being built for
  33. // need to be enetered here before the driver will build
  34. enum
  35. {
  36.     kDriverVendorID         = Your vendor number,        // USB Vendor ID
  37.     kDriverProductID    = Your device number,        // USB Product ID.
  38.     kDriverClassID        = kUSBMassStorageClass, 
  39.     kDriverSubClassID    = Your device subclass
  40. };
  41.  
  42. #endif /* __SAMPLESTORAGEDEVICEID__ */